home *** CD-ROM | disk | FTP | other *** search
- documentProc EQU 0
- dBoxProc EQU 1
- plainDBox EQU 2
- altDBoxProc EQU 3
- noGrowDocProc EQU 4
- movableDBoxProc EQU 5
- zoomDocProc EQU 8
- zoomNoGrow EQU 12
- rDocProc EQU 16
- ; floating window defproc ids
- floatProc EQU 1985
- floatGrowProc EQU 1987
- floatZoomProc EQU 1989
- floatZoomGrowProc EQU 1991
- floatSideProc EQU 1993
- floatSideGrowProc EQU 1995
- floatSideZoomProc EQU 1997
- floatSideZoomGrowProc EQU 1999
- ; window kinds
- dialogKind EQU 2
- userKind EQU 8
- ;FindWindow Result Codes
- inDesk EQU 0
- inMenuBar EQU 1
- inSysWindow EQU 2
- inContent EQU 3
- inDrag EQU 4
- inGrow EQU 5
- inGoAway EQU 6
- inZoomIn EQU 7
- inZoomOut EQU 8
-
- ;window messages
- wDraw EQU 0
- wHit EQU 1
- wCalcRgns EQU 2
- wNew EQU 3
- wDispose EQU 4
- wGrow EQU 5
- wDrawGIcon EQU 6
- deskPatID EQU 16
- ;Window Part Identifiers which correlate color table entries with window elements
- wContentColor EQU 0
- wFrameColor EQU 1
- wTextColor EQU 2
- wHiliteColor EQU 3
- wTitleBarColor EQU 4
-
- wNoHit EQU 0
- wInContent EQU 1
- wInDrag EQU 2
- wInGrow EQU 3
- wInGoAway EQU 4
- wInZoomIn EQU 5
- wInZoomOut EQU 6
- if PPC
- IMPORT InitWindows
- IMPORT GetWMgrPort
- IMPORT NewWindow
- IMPORT GetNewWindow
- IMPORT CloseWindow
- IMPORT DisposeWindow
- IMPORT GetWTitle
- IMPORT SelectWindow
- IMPORT HideWindow
- IMPORT ShowWindow
- IMPORT ShowHide
- IMPORT HiliteWindow
- IMPORT BringToFront
- IMPORT SendBehind
- IMPORT FrontWindow
- IMPORT DrawGrowIcon
- IMPORT MoveWindow
- IMPORT SizeWindow
- IMPORT ZoomWindow
- IMPORT InvalRect
- IMPORT InvalRgn
- IMPORT ValidRect
- IMPORT ValidRgn
- IMPORT BeginUpdate
- IMPORT EndUpdate
- IMPORT SetWRefCon
- IMPORT GetWRefCon
- IMPORT SetWindowPic
- IMPORT GetWindowPic
- IMPORT CheckUpdate
- IMPORT ClipAbove
- IMPORT SaveOld
- IMPORT DrawNew
- IMPORT PaintOne
- IMPORT PaintBehind
- IMPORT CalcVis
- IMPORT CalcVisBehind
- IMPORT GrowWindow
- IMPORT FindWindow
-
- IMPORT PinRect
- IMPORT DragGrayRgn
- IMPORT DragTheRgn
- IMPORT TrackBox
- IMPORT GetCWMgrPort
- IMPORT SetWinColor
- IMPORT SetDeskCPat
- IMPORT NewCWindow
- IMPORT GetNewCWindow
- IMPORT GetWVariant
- IMPORT SetWTitle
- IMPORT TrackGoAway
- IMPORT DragWindow
-
- endif
-